home *** CD-ROM | disk | FTP | other *** search
/ Garbo / Garbo.cdr / mac / hypercrd / hc2_x / tcprogud.sit / TC Prog Guide / card_56733.txt < prev    next >
Text File  |  1991-02-27  |  1KB  |  37 lines

  1. -- card: 56733 from stack: in
  2. -- bmap block id: 0
  3. -- flags: 0000
  4. -- background id: 4755
  5. -- name: 
  6.  
  7.  
  8. -- part contents for background part 4
  9. ----- text -----
  10. Usually the functions defined in standard, specialized, or user-defined libraries are declared (their prototypes are given) in header files.  The appropriate header should be #included into any source file accessing these functions*.
  11.  
  12. (In truth, the user may provide the appropriate function prototypes himself/herself instead of #including the standard header file.  This, however, is a very poor practice since future versions of the compiler may change the function implementation slightly causing the user's prototype to be inaccurate.  Portability is also jeapordized.  Also note that some functions are implemented as macros in the standard header file.)
  13.  
  14. This chapter describes only a sampling of frequently-used functions from the standard C function libraries.  A C reference text or manual should be consulted for greater breadth and detail.
  15.  
  16. Consult the documentation for your own compiler to see what specialized libraries are available, if portability is not crucial.
  17.  
  18. Appendix 1 describes using libraries with TC projects.
  19.  
  20.  
  21. -- part contents for background part 7
  22. ----- text -----
  23. 187
  24.  
  25. -- part contents for background part 29
  26. ----- text -----
  27. 52189
  28.  
  29.  
  30. -- part contents for background part 27
  31. ----- text -----
  32. File inclusion
  33.  
  34.  
  35. -- part contents for background part 20
  36. ----- text -----
  37. File inclusion - p175